ObjectReferences.fromJson constructor

ObjectReferences.fromJson(
  1. Map json_
)

Implementation

ObjectReferences.fromJson(core.Map json_)
    : this(
        objectIds: json_.containsKey('objectIds')
            ? (json_['objectIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );