PostCard constructor

PostCard({
  1. Key? key,
  2. Widget? title,
  3. List<Widget>? actions,
  4. Widget? action,
  5. Widget? subheader,
  6. Widget? avatar,
  7. Widget? content,
  8. BoxDecoration? decoration,
  9. BoxConstraints? constraints,
  10. EdgeInsets? margin,
  11. dynamic avatarDecoration,
  12. EdgeInsets? padding,
})

Implementation

PostCard(
    {Key? key,
    this.title,
    this.actions,
    this.action,
    this.subheader,
    this.avatar,
    this.content,
    this.decoration,
    this.constraints,
    this.margin,
    this.avatarDecoration,
    this.padding})
    : super(key: key);