M4ePhoneNumber.fromJson constructor

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

Implementation

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