Instance constructor
Instance({})
Implementation
factory Instance({
_i2.String Function()? getemptymask,
_i2.dynamic Function()? getmetadata,
_i2.bool Function()? hasMaskedValue,
_i2.bool Function()? isComplete,
_i2.bool Function()? isValid,
_i3.Instance Function(_i2.Object)? mask,
void Function()? remove,
void Function(_i2.String)? setValue,
_i2.String Function()? unmaskedvalue,
}) =>
Instance._(
getemptymask:
getemptymask == null ? null : _i4.allowInterop(getemptymask),
getmetadata: getmetadata == null ? null : _i4.allowInterop(getmetadata),
hasMaskedValue:
hasMaskedValue == null ? null : _i4.allowInterop(hasMaskedValue),
isComplete: isComplete == null ? null : _i4.allowInterop(isComplete),
isValid: isValid == null ? null : _i4.allowInterop(isValid),
mask: mask == null ? null : _i4.allowInterop(mask),
remove: remove == null ? null : _i4.allowInterop(remove),
setValue: setValue == null ? null : _i4.allowInterop(setValue),
unmaskedvalue:
unmaskedvalue == null ? null : _i4.allowInterop(unmaskedvalue),
);