ParseXFile constructor
ParseXFile(
- XFile? file, {
- String? name,
- String? url,
- bool? debug,
- ParseClient? client,
- bool? autoSendSessionId,
Creates a new file base XFile
{https://docs.parseplatform.org/rest/guide/#files/}
Implementation
ParseXFile(this.file,
{String? name,
super.url,
super.debug,
super.client,
super.autoSendSessionId})
: super(
name: name ?? path.basename(file?.path ?? ''),
);