copy method
Implementation
Minio copy({
String? endPoint,
String? accessKey,
String? secretKey,
int? port,
bool? useSSL,
String? sessionToken,
String? region,
bool? pathStyle,
bool? enableTrace,
}) =>
Minio(
endPoint: endPoint ?? this.endPoint,
accessKey: accessKey ?? this.accessKey,
secretKey: secretKey ?? this.secretKey,
port: port ?? this.port,
useSSL: useSSL ?? this.useSSL,
sessionToken: sessionToken ?? this.sessionToken,
region: region ?? this.region,
pathStyle: pathStyle ?? this.pathStyle,
enableTrace: enableTrace ?? this.enableTrace,
);