copyWith method

Client copyWith({
  1. String? email,
})

Implementation

Client copyWith({
  String? email,
}) =>
    Client(
      email: email ?? this.email,
    );