M4ePhoneNumber.fromJson constructor

M4ePhoneNumber.fromJson(Map<String, dynamic> json)

Implementation

factory M4ePhoneNumber.fromJson(Map<String, dynamic> json) {
  return M4ePhoneNumber(
    country: json['country'],
    number: json['number'],
  );
}