Jwt.fromJson constructor

Jwt.fromJson(
  1. Map _json
)

Implementation

Jwt.fromJson(core.Map _json)
    : this(
        compactJwt: _json.containsKey('compactJwt')
            ? _json['compactJwt'] as core.String
            : null,
      );