TLContentContainer constructor

const TLContentContainer({
  1. Key? key,
  2. Widget? topWidget,
  3. Widget? contentWidget,
  4. Widget? bottomWidget,
  5. bool isScrollable = true,
  6. Clip? childClipBehavior,
  7. EdgeInsetsGeometry? padding,
})

Implementation

const TLContentContainer({
  Key? key,
  this.topWidget,
  this.contentWidget,
  this.bottomWidget,
  this.isScrollable = true,
  this.childClipBehavior,
  this.padding,
}) : super(key: key);