fromMap static method
override
Construct from Map.
Implementation
static BlockList? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
switch (_) {
case 'blockListStories':
return BlockListStories.fromMap(_map);
case 'blockListMain':
return BlockListMain.fromMap(_map);
case null:
default:
return null;
}
}