fromJson static method

MultiFactorAuthenticationInfo fromJson(
  1. dynamic json
)

Implementation

static MultiFactorAuthenticationInfo fromJson(dynamic json) {
  return MultiFactorAuthenticationInfo(
    ticket: json['ticket'] as String,
  );
}