$LocalCutoffTime.fromJson constructor

$LocalCutoffTime.fromJson(
  1. Map json_
)

Implementation

$LocalCutoffTime.fromJson(core.Map json_)
  : this(
      hour: json_['hour'] as core.String?,
      minute: json_['minute'] as core.String?,
    );