copyWith method

AddressAdmDiv copyWith({
  1. String? type,
  2. String? name,
})

Implementation

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