toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (email != null) 'email': email!,
      if (idToken != null) 'idToken': idToken!,
      if (oobCode != null) 'oobCode': oobCode!,
      if (tenantId != null) 'tenantId': tenantId!,
    };