FirebaseUserDocument.fromJson constructor

FirebaseUserDocument.fromJson(
  1. Map<String, Object?> json,
  2. String id
)

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,
      );