MTUser constructor

MTUser({
  1. required String name,
  2. String? email,
  3. String? phone,
})

Implementation

MTUser({required this.name, this.email, this.phone});