FirebaseUserDocument.fromJson constructor
Constructs a FirebaseUserDocument from JSON.
Implementation
FirebaseUserDocument.fromJson(
Map<String, Object?> json,
String id,
) : this(
id: id,
firstName:
json['first_name'] == null ? '' : json['first_name']! as String,
lastName:
json['last_name'] == null ? '' : json['last_name']! as String,
imageUrl:
json['image_url'] == null ? null : json['image_url']! as String,
);