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?,
      );