12 lines
255 B
Dart
12 lines
255 B
Dart
part of '../main.dart';
|
|
|
|
class UnsupportedCard extends StatelessWidget {
|
|
final CardData card;
|
|
|
|
const UnsupportedCard({Key key, this.card}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(height: 20);
|
|
}
|
|
} |