UserPropertyUpdate.fromJson constructor

UserPropertyUpdate.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory UserPropertyUpdate.fromJson(Map<String, Object?> json) {
  return UserPropertyUpdate(
    value: json[r'value'] as Map<String, Object?>? ?? {},
  );
}