copyWith method

AhaiCardVerticalTopBottomContentModel copyWith({
  1. required String map,
  2. required String title,
  3. required String key,
  4. required String value,
  5. required List<AhaiCardVerticalTopBottomSubContentModel> topContent,
  6. required List<AhaiCardVerticalTopBottomSubContentModel> bottomContent,
})

Implementation

AhaiCardVerticalTopBottomContentModel copyWith({
  required String map,
  required String title,
  required String key,
  required String value,
  required List<AhaiCardVerticalTopBottomSubContentModel> topContent,
  required List<AhaiCardVerticalTopBottomSubContentModel> bottomContent,
}) =>
    AhaiCardVerticalTopBottomContentModel(
      map: map,
      title: title,
      key: key,
      value: value,
      topContent: topContent,
      bottomContent: bottomContent,
    );