ResultOfRunGet.fromMap constructor

ResultOfRunGet.fromMap(
  1. Map<String, dynamic> map
)

Implementation

ResultOfRunGet.fromMap(Map<String, dynamic> map) {
  if (map.containsKey('output') && (map['output'] != null)) {
    _output = map['output'];
  } else {
    throw ('Wrong map data');
  }
}