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