blob: 4507c11ed00a70de33bfcfb3367029b46220d5ab [file] [log] [blame]
import 'package:meta/meta.dart';
class FloatingActionButton {
/// The widget below this widget in the tree.
final Object child;
/// Creates a floating action button.
///
/// Most commonly used in the [Scaffold.floatingActionButton] field.
const FloatingActionButton({
@required this.child,
});
}