ExecutionReference.fromJson constructor

ExecutionReference.fromJson(
  1. Map json_
)

Implementation

ExecutionReference.fromJson(core.Map json_)
    : this(
        completionTimestamp: json_.containsKey('completionTimestamp')
            ? json_['completionTimestamp'] as core.String
            : null,
        creationTimestamp: json_.containsKey('creationTimestamp')
            ? json_['creationTimestamp'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );