copyWith method
Implementation
AddressAdmDiv copyWith({
  String? type,
  String? name
}) {
  return AddressAdmDiv(
    type: type ?? this.type,
    name: name ?? this.name
  );
}AddressAdmDiv copyWith({
  String? type,
  String? name
}) {
  return AddressAdmDiv(
    type: type ?? this.type,
    name: name ?? this.name
  );
}