10 lines
238 B
Dart
10 lines
238 B
Dart
import 'package:dart_framework/io/file_io.dart'
|
|
if (dart.library.html) 'package:dart_framework/io/file_web.dart';
|
|
|
|
abstract class FileExtendBase {
|
|
static FileExtendBase get instance {
|
|
return getInstance();
|
|
}
|
|
|
|
void test();
|
|
}
|