MorphableWidget constructor

const MorphableWidget({
  1. required Widget child,
  2. BoxDecoration? decoration,
  3. Size? size,
  4. EdgeInsets? padding,
})

Implementation

const MorphableWidget({
  required this.child,
  this.decoration,
  this.size,
  this.padding,
});