Instance constructor

Instance({
  1. String getemptymask()?,
  2. dynamic getmetadata()?,
  3. bool hasMaskedValue()?,
  4. bool isComplete()?,
  5. bool isValid()?,
  6. Instance mask(
    1. Object
    )?,
  7. void remove()?,
  8. void setValue(
    1. String
    )?,
  9. String unmaskedvalue()?,
})

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),
    );