FFTextFieldMask constructor
FFTextFieldMask({
- String? legacyMask,
- bool? isCustom,
- 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;
}