onResonse method

  1. @override
List<String> onResonse(
  1. List<Map<String, dynamic>> result
)
override

Converts the response result to the specified type RESULT.

Implementation

@override
List<String> onResonse(List<Map<String, dynamic>> result) {
  return result.map<String>((e) => e["script_hash"]).toList();
}