Owner.fromJson constructor

Owner.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Owner.fromJson(Map<String, dynamic> json) {
  if (json["uniqueId"] is String) {
    uniqueId = json["uniqueId"];
  }
  if (json["firebaseId"] is String) {
    firebaseId = json["firebaseId"];
  }
}