copyWith method

InputCredentialsNew copyWith({
  1. String? data,
  2. bool? allowSave,
})

Implementation

InputCredentialsNew copyWith({String? data, bool? allowSave}) =>
    InputCredentialsNew(
      data: data ?? this.data,
      allowSave: allowSave ?? this.allowSave,
    );