AddressEdit constructor
AddressEdit({
- Key? key,
- String areaColumnsPlaceholder = "选择省 / 市 / 区",
- bool showPostal = true,
- bool showDelete = false,
- bool showSetDefault = false,
- String saveButtonText = "保存",
- String deleteButtonText = "删除",
- int detailRows = 1,
- int detailMaxlength = 200,
- Map<
String, dynamic> ? addressInfo, - List<
Widget> ? children, - dynamic onSave(
- Map map
- dynamic onDelete(
- Map map
- dynamic onCancelDelete(
- Map map
Implementation
AddressEdit(
{Key? key,
this.areaColumnsPlaceholder: "选择省 / 市 / 区",
this.showPostal: true,
this.showDelete: false,
this.showSetDefault: false,
this.saveButtonText: "保存",
this.deleteButtonText: "删除",
this.detailRows: 1,
this.detailMaxlength: 200,
this.addressInfo,
this.children,
this.onSave,
this.onDelete,
this.onCancelDelete})
: super(key: key);