DashConfig.fromJson constructor

DashConfig.fromJson(
  1. Map json_
)

Implementation

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