CustomerMeta constructor

const CustomerMeta({
  1. required String id,
  2. String? name,
  3. String? email,
  4. String? phone,
  5. String? emailSha256,
  6. String? phoneSha256,
})

Implementation

const CustomerMeta({
  required this.id,
  this.name,
  this.email,
  this.phone,
  this.emailSha256,
  this.phoneSha256,
});