decode static method

StyleProjection decode(
  1. Object result
)

Implementation

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