EndOfSegmentLocation.fromJson constructor

EndOfSegmentLocation.fromJson(
  1. Map json_
)

Implementation

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