flutterBehavior method

FloatingLabelBehavior? flutterBehavior()

Implementation

FloatingLabelBehavior? flutterBehavior() {
  return switch (this) {
    (AppTextFormFieldLabelBehavior.flutterAuto) => FloatingLabelBehavior.auto,
    (AppTextFormFieldLabelBehavior.flutterAlways) => FloatingLabelBehavior.always,
    (_) => null,
  };
}