PayMongoBilling constructor

const PayMongoBilling({
  1. required String name,
  2. required String phone,
  3. required String email,
  4. required PayMongoAddress address,
})

Implementation

const PayMongoBilling({
  required this.name,
  required this.phone,
  required this.email,
  required this.address,
});