decode static method
- Object result
override
Implementation
static StandardPlaceLabelsState decode(Object result) {
result as List<Object?>;
final map = (result[0] as Map<Object?, Object?>?)!.cast<String, Object?>();
return StandardPlaceLabelsState(
hide: map['hide'] as bool?,
highlight: map['highlight'] as bool?,
select: map['select'] as bool?,
);
}