TGetAuthenticatorBody.fromJson constructor
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,
);
}