hours method

Future hours(
  1. int hours
)

Set sleep in hours.

Implementation

Future hours(int hours) {
  return Future.delayed(Duration(hours: hours), () {});
}