OtherName.fromJson constructor

OtherName.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory OtherName.fromJson(Map<String, dynamic> json) {
  return OtherName(
    typeId: json['TypeId'] as String,
    value: json['Value'] as String,
  );
}