Reference.fromJson constructor

Reference.fromJson(
  1. Map json_
)

Implementation

Reference.fromJson(core.Map json_)
  : this(
      kind: json_['kind'] as core.String?,
      referenceType: json_['referenceType'] as core.String?,
      referrer: json_['referrer'] as core.String?,
      target: json_['target'] as core.String?,
    );