toJson method

Map<String, Object?> toJson()

Converts the FirebaseUserDocument to JSON format.

Implementation

Map<String, Object?> toJson() => {
      'first_name': firstName,
      'last_name': lastName,
      'image_url': imageUrl,
    };