BasicAuthentication.fromJson constructor

BasicAuthentication.fromJson(
  1. Map json_
)

Implementation

BasicAuthentication.fromJson(core.Map json_)
    : this(
        password: json_['password'] as core.String?,
        username: json_['username'] as core.String?,
      );