6 lines
163 B
Dart
6 lines
163 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppbarProviderInterface {
|
|
AppBar get appBar =>
|
|
throw UnimplementedError("appBar getter not implemented");
|
|
}
|