AuthMFAAdminListFactorsResponse.fromJson constructor

AuthMFAAdminListFactorsResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AuthMFAAdminListFactorsResponse.fromJson(Map<String, dynamic> json) {
  return AuthMFAAdminListFactorsResponse(
    factors:
        (json['factors'] as List).map((e) => Factor.fromJson(e)).toList(),
  );
}