copyWith method

VgkMapDetail copyWith({
  1. required String title,
  2. required List<VgkMapContent> contents,
})

Implementation

VgkMapDetail copyWith({
  required String title,
  required List<VgkMapContent> contents,
}) =>
    VgkMapDetail(
      title: title,
      contents: contents,
    );