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