ActiveMemory<ActiveType> constructor

const ActiveMemory<ActiveType>({
  1. required DateTime createdAt,
  2. DateTime? expiresAt,
  3. ActiveType? activeType,
})

Implementation

const ActiveMemory({
  required this.createdAt,
  this.expiresAt,
  this.activeType,
});