CutoffTime.fromJson constructor

CutoffTime.fromJson(
  1. Map json_
)

Implementation

CutoffTime.fromJson(core.Map json_)
  : this(
      hour: json_['hour'] as core.int?,
      minute: json_['minute'] as core.int?,
      timeZone: json_['timeZone'] as core.String?,
    );