props property

  1. @override
List<Object> props

The day's properties. See Equatable.props for more information.

Implementation

@override
List<Object> get props => [
      id,
      name,
      notes,
      studentPrice ?? 'null',
      employeePrice ?? 'null',
      pupilPrice ?? 'null',
      othersPrice ?? 'null',
      category,
    ];