ObjectOwner.fromJson constructor

ObjectOwner.fromJson(
  1. Map _json
)

Implementation

ObjectOwner.fromJson(core.Map _json)
    : this(
        entity: _json.containsKey('entity')
            ? _json['entity'] as core.String
            : null,
        entityId: _json.containsKey('entityId')
            ? _json['entityId'] as core.String
            : null,
      );