copyWith method

ModernFormBottomSheetModeStyle copyWith({
  1. String? text,
  2. Color? textColor,
  3. FontWeight? fontWeight,
})

Implementation

ModernFormBottomSheetModeStyle copyWith({
  String? text,
  Color? textColor,
  FontWeight? fontWeight,
}) {
  return ModernFormBottomSheetModeStyle(
    text: text ?? this.text,
    textColor: textColor ?? this.textColor,
    fontWeight: fontWeight ?? this.fontWeight,
  );
}