cake_wallet/lib/entities/service_plan.dart
2022-07-01 19:15:07 +02:00

21 lines
418 B
Dart

import 'package:flutter/material.dart';
class ServicePlan {
const ServicePlan({
@required this.id,
@required this.duration,
@required this.price,
@required this.quantity,
});
final String id;
final int duration;
final int price;
final int quantity;
@override
bool operator ==(Object other) => other is ServicePlan && other.id == id;
@override
int get hashCode => id.hashCode;
}