TGetAuthenticatorBody.fromJson constructor

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

Implementation

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