StopWatchRecord constructor

StopWatchRecord({
  1. int? rawValue,
  2. int? hours,
  3. int? minute,
  4. int? second,
  5. String? displayTime,
})

Implementation

StopWatchRecord({
  this.rawValue,
  this.hours,
  this.minute,
  this.second,
  this.displayTime,
});