blob: e84e2d8209ca1cb544a169e99fee7ee47d2b1e47 [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* @assertion DateTime.fromMillisecondsSinceEpoch(int millisecondsSinceEpoch, {bool isUtc: false})
* Constructs a new DateTime instance with the given millisecondsSinceEpoch.
* @description Checks that exception is thrown if [millisecondsSinceEpoch] or
* [isUtc] is statically [null].
* @author iarkh
*/
main() {
DateTime.fromMillisecondsSinceEpoch(null, isUtc: true);
// ^
// [analyzer] unspecified
// [cfe] unspecified
DateTime.fromMillisecondsSinceEpoch(1, isUtc: null);
// ^
// [analyzer] unspecified
// [cfe] unspecified
}