decodeTyped<T> function

T decodeTyped<T>(
  1. dynamic raw
)

Implementation

T decodeTyped<T>(dynamic raw) {
  return decodeTypedNullable(raw) ?? (throw ApiException('Missing value.'));
}