FlexibleTimeRange.fromJson constructor

FlexibleTimeRange.fromJson(
  1. Map json_
)

Implementation

FlexibleTimeRange.fromJson(core.Map json_)
  : this(
      maxDuration: json_['maxDuration'] as core.String?,
      minDuration: json_['minDuration'] as core.String?,
      startTimeNotEarlierThan:
          json_['startTimeNotEarlierThan'] as core.String?,
      startTimeNotLaterThan: json_['startTimeNotLaterThan'] as core.String?,
    );