class GetBlocksModel { String block = ''; GetBlocksModel(); factory GetBlocksModel.fromJson(Map json){ GetBlocksModel rtvm = new GetBlocksModel(); rtvm.block = json['block'].toString() ?? ''; return rtvm; } }