decode static method

StyleProjection decode(
  1. Object result
)

Implementation

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