copyWith method
PageBlockMap
copyWith({
- Location? location,
- int? zoom,
- int? width,
- int? height,
- PageBlockCaption? caption,
override
Implementation
@override
PageBlockMap copyWith({
Location? location,
int? zoom,
int? width,
int? height,
PageBlockCaption? caption,
}) =>
PageBlockMap(
location: location ?? this.location,
zoom: zoom ?? this.zoom,
width: width ?? this.width,
height: height ?? this.height,
caption: caption ?? this.caption,
);