TargetReference.fromJson constructor

TargetReference.fromJson(
  1. Map json_
)

Implementation

TargetReference.fromJson(core.Map json_)
    : this(
        target: json_.containsKey('target')
            ? json_['target'] as core.String
            : null,
      );