FFTextFieldMask constructor

FFTextFieldMask({
  1. String? legacyMask,
  2. bool? isCustom,
  3. FFStringValue? maskValue,
})

Implementation

factory FFTextFieldMask({
  $core.String? legacyMask,
  $core.bool? isCustom,
  FFStringValue? maskValue,
}) {
  final result = create();
  if (legacyMask != null) result.legacyMask = legacyMask;
  if (isCustom != null) result.isCustom = isCustom;
  if (maskValue != null) result.maskValue = maskValue;
  return result;
}