copyWith method

MapId copyWith({
  1. int? value,
})

Implementation

MapId copyWith({
  int? value
}) {
  return MapId(
    value ?? this.value
  );
}