copyWith method

SpaceDescriptionCreatePlain copyWith({
  1. String? value,
  2. String? representation,
})

Implementation

SpaceDescriptionCreatePlain copyWith(
    {String? value, String? representation}) {
  return SpaceDescriptionCreatePlain(
    value: value ?? this.value,
    representation: representation ?? this.representation,
  );
}