onResonse method
Converts the response result to the specified type RESULT.
Implementation
@override
List<ADATransactionSummaryInfoResponse> onResonse(
    List<Map<String, dynamic>> result) {
  return result
      .map((e) => ADATransactionSummaryInfoResponse.fromJson(e))
      .toList();
}