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