CalendarEventsCompanion class

Inheritance

Constructors

CalendarEventsCompanion({Value<int> id = const Value.absent(), Value<int> portalId = const Value.absent(), Value<DateTime?> start = const Value.absent(), Value<DateTime?> end = const Value.absent(), Value<bool> allDay = const Value.absent(), Value<String?> title = const Value.absent(), Value<String?> place = const Value.absent(), Value<String?> content = const Value.absent(), Value<String?> ownerName = const Value.absent(), Value<String?> creatorName = const Value.absent()})
const
CalendarEventsCompanion.insert({Value<int> id = const Value.absent(), required int portalId, Value<DateTime?> start = const Value.absent(), Value<DateTime?> end = const Value.absent(), Value<bool> allDay = const Value.absent(), Value<String?> title = const Value.absent(), Value<String?> place = const Value.absent(), Value<String?> content = const Value.absent(), Value<String?> ownerName = const Value.absent(), Value<String?> creatorName = const Value.absent()})

Properties

allDay Value<bool>
final
content Value<String?>
final
creatorName Value<String?>
final
end Value<DateTime?>
final
hashCode int
The hash code for this object.
no setterinherited
id Value<int>
final
ownerName Value<String?>
final
place Value<String?>
final
portalId Value<int>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
start Value<DateTime?>
final
title Value<String?>
final

Methods

copyWith({Value<int>? id, Value<int>? portalId, Value<DateTime?>? start, Value<DateTime?>? end, Value<bool>? allDay, Value<String?>? title, Value<String?>? place, Value<String?>? content, Value<String?>? ownerName, Value<String?>? creatorName}) CalendarEventsCompanion
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toColumns(bool nullToAbsent) Map<String, Expression<Object>>
Converts this object into a map of column names to expressions to insert or update.
override
toString() String
A string representation of this object.
override

Operators

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

Static Methods

custom({Expression<int>? id, Expression<int>? portalId, Expression<DateTime>? start, Expression<DateTime>? end, Expression<bool>? allDay, Expression<String>? title, Expression<String>? place, Expression<String>? content, Expression<String>? ownerName, Expression<String>? creatorName}) Insertable<CalendarEvent>