copyWith method
VgkMapDetailsModel
copyWith({
- required String name,
- required List<
VgkMapElement> maps, - required List<
VgkMapDetail> data,
Implementation
VgkMapDetailsModel copyWith({
required String name,
required List<VgkMapElement> maps,
required List<VgkMapDetail> data,
}) =>
VgkMapDetailsModel(
name: name,
maps: maps,
data: data,
);