BulkTimestamp class

Represents a timestamp value for bulk insert operations.

Constructors

BulkTimestamp({required int year, required int month, required int day, required int hour, required int minute, required int second, int fraction = 0})
Creates a new BulkTimestamp instance.
const

Properties

day int
The day of month (1-31).
final
fraction int
Fractional seconds in nanoseconds.
final
hashCode int
The hash code for this object.
no setterinherited
hour int
The hour (0-23).
final
minute int
The minute (0-59).
final
month int
The month (1-12).
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
second int
The second (0-59).
final
year int
The year (e.g., 2024).
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromDateTime(DateTime dt) BulkTimestamp
Creates a BulkTimestamp from a DateTime instance.