PaymayaContact constructor

const PaymayaContact({
  1. String? email,
  2. String? phone,
})

Simple contact info. Example:

  final contact = PaymayaContact(
    email:'paymaya@flutter.com',
    phone:'0912345689',
  );

Implementation

const PaymayaContact({
  this.email,
  this.phone,
});