PaymentGroup constructor

PaymentGroup(
  1. {required String id,
  2. required String name,
  3. required String imageUrl}
)

Implementation

PaymentGroup({
 required this.id,
 required this.name,
 required this.imageUrl,
});