AuthenticationInfo.fromJson constructor

AuthenticationInfo.fromJson(
  1. Map json_
)

Implementation

AuthenticationInfo.fromJson(core.Map json_)
  : this(
      credentials: json_['credentials'] as core.String?,
      schemes: (json_['schemes'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );