TRON -> TRON_MAINNET
This commit is contained in:
11
frontend/pshared/lib/models/file/downloaded_file.dart
Normal file
11
frontend/pshared/lib/models/file/downloaded_file.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class DownloadedFile {
|
||||
final List<int> bytes;
|
||||
final String filename;
|
||||
final String mimeType;
|
||||
|
||||
const DownloadedFile({
|
||||
required this.bytes,
|
||||
required this.filename,
|
||||
required this.mimeType,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user