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