fromJson method

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

Implementation

void fromJson(Map<String, dynamic> json) {
  apiKey = json['apiKey'] ?? '';
  appId = json['appId'] ?? '';
  storageURL = json['storageURL'] ?? '';
  projectId = json['projectId'] ?? '';
  //bucketId = json['bucketId'] ?? '';
  messagingSenderId = json['messagingSenderId'] ?? '';
}