FlutlyProfileImageApperiances constructor

FlutlyProfileImageApperiances({
  1. Color? borderColor,
  2. double? borderRadius,
  3. double? borderWeight,
  4. BoxShape? shape,
})

Implementation

FlutlyProfileImageApperiances({
  this.borderColor,
  this.borderRadius,
  this.borderWeight,
  this.shape,
}) {
  borderColor ??= Flutly.getFlutlyTheme().getColor("secondaryBackgroundColor");
  borderWeight ??= 2;
  shape ??= BoxShape.circle;
}