PhoneWithExtensionControl constructor

const PhoneWithExtensionControl({
  1. Key? key,
  2. required FormValueChanged<IPhoneWithExtension> onChange,
  3. required IPhoneWithExtension? initialValue,
})

Implementation

const PhoneWithExtensionControl({
  Key? key,
  required this.onChange,
  required this.initialValue,
}) : super(key: key);