v1GetAuthenticatorRequest.fromJson constructor

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

Implementation

factory v1GetAuthenticatorRequest.fromJson(Map<String, dynamic> json) {
  final _organizationId = json['organizationId'] as String;
  final _authenticatorId = json['authenticatorId'] as String;
  return v1GetAuthenticatorRequest(
    organizationId: _organizationId,
    authenticatorId: _authenticatorId,
  );
}