cake_wallet/lib/entities/cake_phone_entities/service_plan.dart
OmarHatem28 81e799c514 Add Active Services page UI
Add Phone service entity
2022-07-05 17:34:16 +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;
}