$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,
      );