copy method

MapLayerOptions copy({
  1. String? attribution,
})

Implementation

MapLayerOptions copy({String? attribution}) => MapLayerOptions(
      attribution: attribution ?? this.attribution,
    );