copyWith method

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

Implementation

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