copyWith method Null safety
Implementation
JanusError copyWith({
int? errorCode,
String? error,
String? pluginName,
}) {
return JanusError(
errorCode: errorCode ?? this.errorCode,
error: error ?? this.error,
pluginName: pluginName ?? this.pluginName,
);
}