copyWith method

SpacePropertyCreateRequest copyWith({
  1. String? key,
  2. dynamic value,
})

Implementation

SpacePropertyCreateRequest copyWith({String? key, dynamic value}) {
  return SpacePropertyCreateRequest(
    key: key ?? this.key,
    value: value ?? this.value,
  );
}