copyWith method

EventSchema copyWith({
  1. BlockSchema? block,
})

Implementation

EventSchema copyWith({BlockSchema? block}) {
  return EventSchema(block: block ?? this.block);
}