Seconds constructor

const Seconds(
  1. {required double seconds,
  2. dynamic extra,
  3. int? clientId}
)

Contains a value representing a number of seconds

Implementation

const Seconds({
  required this.seconds,
  this.extra,
  this.clientId,
});