copyWith method

Related copyWith({
  1. String? client,
  2. String? onclick,
  3. String? oncomplete,
})

Implementation

Related copyWith({
  String? client,
  String? onclick,
  String? oncomplete,
}) =>
    Related(
      client: client ?? this.client,
      onclick: onclick ?? this.onclick,
      oncomplete: oncomplete ?? this.oncomplete,
    );