fromMap static method
override
Construct from Map.
Implementation
static StoryAreaTypeSuggestedReaction? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
if (_ != CONSTRUCTOR) return null;
var extra = _map['@extra'];
var clientId = _map['@clientId'];
var reaction_type = ReactionType.fromMap(_map['reaction_type'])!;
var total_count = _map['total_count']! as int;
var is_dark = _map['is_dark']! as bool;
var is_flipped = _map['is_flipped']! as bool;
return StoryAreaTypeSuggestedReaction(
extra: extra,
clientId: clientId,
reaction_type: reaction_type,
total_count: total_count,
is_dark: is_dark,
is_flipped: is_flipped,
);
}