copyWith method

AttachmentMenuBotColor copyWith({
  1. int? lightColor,
  2. int? darkColor,
})

Implementation

AttachmentMenuBotColor copyWith({
  int? lightColor,
  int? darkColor,
}) =>
    AttachmentMenuBotColor(
      lightColor: lightColor ?? this.lightColor,
      darkColor: darkColor ?? this.darkColor,
    );