copyWith method
Implementation
CustomRequestResult copyWith({
String? result,
dynamic extra,
int? clientId,
}) => CustomRequestResult(
result: result ?? this.result,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);
CustomRequestResult copyWith({
String? result,
dynamic extra,
int? clientId,
}) => CustomRequestResult(
result: result ?? this.result,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);