onResonse method

T onResonse(
  1. dynamic result
)

Converts a dynamic response to the generic type T.

Implementation

T onResonse(dynamic result) {
  return result as T;
}