copyWith method

UserPropertyCreate copyWith({
  1. Map<String, dynamic>? value,
})

Implementation

UserPropertyCreate copyWith({Map<String, dynamic>? value}) {
  return UserPropertyCreate(
    value: value ?? this.value,
  );
}