Skip to content

Commit

Permalink
updated flutter & dart versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurHeitmann committed Jun 25, 2023
1 parent b4d1e97 commit e18b2cd
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 119 deletions.
4 changes: 2 additions & 2 deletions lib/fileTypeUtils/audio/bnkIO.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import '../utils/ByteDataWrapper.dart';
abstract class ChunkWithSize {
int calculateSize();
}
abstract class ChunkBase with ChunkWithSize {
abstract class ChunkBase extends ChunkWithSize {
void write(ByteDataWrapper bytes);
}
abstract class BnkChunkBase extends ChunkBase {
Expand All @@ -28,7 +28,7 @@ abstract class BnkChunkBase extends ChunkBase {
}
}

class BnkFile with ChunkWithSize {
class BnkFile extends ChunkWithSize {
List<BnkChunkBase> chunks = [];

BnkFile(this.chunks);
Expand Down
Loading

0 comments on commit e18b2cd

Please sign in to comment.