fromJson static method

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

Implementation

static ApiKeysRevocationResult fromJson(Map<String, dynamic> json) {
  return ApiKeysRevocationResult(revoked: ((json['revoked'] as List?) ?? const []).map((item) => item.toString()).toList());
}