ContactInfoModel constructor Null safety

ContactInfoModel(
  1. {String? value,
  2. String? url,
  3. int? socialType}
)

Implementation

ContactInfoModel({
  this.value,
  this.url,
  this.socialType,
});