fromJson static method

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

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

Implementation

static IntrospectionResponseExt? fromJson(Map<String, dynamic>? json) => json == null
  ? null
  : IntrospectionResponseExt(
      key: json[r'key'],
      value: json[r'value'],
  );