decode static method
- Object result
Implementation
static StyleProjection decode(Object result) {
result as List<Object?>;
return StyleProjection(
name: StyleProjectionName.values[result[0]! as int],
);
}
static StyleProjection decode(Object result) {
result as List<Object?>;
return StyleProjection(
name: StyleProjectionName.values[result[0]! as int],
);
}