copyWith method

VTextField copyWith({
  1. Key? key,
})

Implementation

VTextField copyWith({
  final Key? key,
}) {
  return VTextField._(
    key: key ?? super.key,
    controller: TextEditingController(),
  );
}