enum CanceledBy {
user('user'),
customer('customer');
final String type;
const CanceledBy(this.type);
}