copyWith method

StyleLayerId copyWith({
  1. String? id,
})

Implementation

StyleLayerId copyWith({
  String? id
}) {
  return StyleLayerId(
    id ?? this.id
  );
}