onResonse method

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

Converts the response result to the specified type RESULT.

Implementation

@override
List<ADAPoolRegistrationCertificateResponse> onResonse(
    List<Map<String, dynamic>> result) {
  return result
      .map((e) => ADAPoolRegistrationCertificateResponse.fromJson(e))
      .toList();
}