fromJson static method

IntrospectionRequest? fromJson(
  1. Map<String, dynamic>? json
)

Returns a new IntrospectionRequest instance and imports its values from json if it's non-null, null if json is null.

Implementation

static IntrospectionRequest? fromJson(Map<String, dynamic>? json) => json == null
  ? null
  : IntrospectionRequest(
      token: json[r'token'],
      tokenTypeHint: json[r'token_type_hint'],
  );