copyWith method

DefaultRasterUrlTemplate copyWith({
  1. String? urlTemplate,
})

Implementation

DefaultRasterUrlTemplate copyWith({
  String? urlTemplate
}) {
  return DefaultRasterUrlTemplate(
    urlTemplate ?? this.urlTemplate
  );
}