v1DeleteAuthenticatorsResult.fromJson constructor

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

Implementation

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