v1DeleteAuthenticatorsResult.fromJson constructor
Implementation
factory v1DeleteAuthenticatorsResult.fromJson(Map<String, dynamic> json) {
final _authenticatorIds = (json['authenticatorIds'] as List).map((e) => e as String).toList();
return v1DeleteAuthenticatorsResult(
authenticatorIds: _authenticatorIds,
);
}