copyWith method

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

Implementation

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