copyWith method

Analytics copyWith({
  1. String? client,
  2. bool? debug,
})

Implementation

Analytics copyWith({
  String? client,
  bool? debug,
}) =>
    Analytics(
      client: client ?? this.client,
      debug: debug ?? this.debug,
    );