AuthenticationData.fromJson constructor

AuthenticationData.fromJson(
  1. Map<String, Object?> json
)

Implementation

AuthenticationData.fromJson(Map<String, Object?> json)
    : type = json['type'] as String?,
      session = json['session'] as String?;