MiniCardOptions constructor

MiniCardOptions(
  1. {required String initials,
  2. double fontSize = 14,
  3. BoxDecoration customStyle = const BoxDecoration(),
  4. String? imageSource,
  5. bool roundedImage = true,
  6. BoxDecoration? imageStyle}
)

Implementation

MiniCardOptions({
  required this.initials,
  this.fontSize = 14,
  this.customStyle = const BoxDecoration(),
  this.imageSource,
  this.roundedImage = true,
  this.imageStyle,
});