SmsContactInfoData constructor

SmsContactInfoData({
  1. required String full_name,
  2. required String first_name,
  3. required String last_name,
  4. required String address,
  5. required SmsPhotoInfoData thumbnail,
  6. required SmsPhotoInfoData photo,
})

Implementation

SmsContactInfoData({
  required this.full_name,
  required this.first_name,
  required this.last_name,
  required this.address,
  required this.thumbnail,
  required this.photo,
});