OperatorCard<T> constructor

const OperatorCard<T>({
  1. Key? key,
  2. required T title,
  3. bool isRequired = false,
  4. bool isSepateLine = true,
  5. Widget? trailing,
  6. EdgeInsetsGeometry? margin,
  7. EdgeInsetsGeometry? containPadding,
  8. EdgeInsetsGeometry? separateMargin,
  9. EdgeInsetsGeometry? contentPadding,
  10. BoxDecoration? decoration,
  11. Widget? child,
  12. AlignmentGeometry? alignment,
})

Implementation

const OperatorCard({
  Key? key,
  required this.title,
  this.isRequired = false,
  this.isSepateLine = true,
  this.trailing,
  this.margin,
  this.containPadding,
  this.separateMargin,
  this.contentPadding,
  this.decoration,
  this.child,
  this.alignment,
}) : super(key: key);