ResultOfWaitForCollection.fromMap constructor
Implementation
ResultOfWaitForCollection.fromMap(Map<String, dynamic> map) {
if (map.containsKey('result') && (map['result'] != null)) {
_result = map['result'];
} else {
throw ('Wrong map data');
}
}