IsDateMillis constructor

IsDateMillis({
  1. bool isUtc = false,
  2. String? error,
})
  • isUtc - if true the DateTime will be in UTC timezone,
  • otherwise it will be in local timezone

Implementation

IsDateMillis({
  this.isUtc = false,
  String? error,
}) : super(error);