onResonse method

  1. @override
List<int> onResonse(
  1. dynamic result
)
override

Converts a dynamic response to the generic type T.

Implementation

@override
List<int> onResonse(result) {
  return (result as List).cast();
}