copyWith method

NativeScriptScriptNOfK copyWith({
  1. int? n,
  2. List<NativeScript>? nativeScripts,
})

Implementation

NativeScriptScriptNOfK copyWith({int? n, List<NativeScript>? nativeScripts}) {
  return NativeScriptScriptNOfK(
      n: n ?? this.n, nativeScripts: nativeScripts ?? this.nativeScripts);
}