LineConnection.fromJson constructor

LineConnection.fromJson(
  1. Map json_
)

Implementation

LineConnection.fromJson(core.Map json_)
    : this(
        connectedObjectId: json_.containsKey('connectedObjectId')
            ? json_['connectedObjectId'] as core.String
            : null,
        connectionSiteIndex: json_.containsKey('connectionSiteIndex')
            ? json_['connectionSiteIndex'] as core.int
            : null,
      );