Setting the file. One moment.
Subchapter 27.1
references/dart.mdMarkdown3 KBView on GitHub
Use /// (doc comments) for all public members to allow tools like dartdoc to process them.
@override, @Deprecated)./// A button that initiates a purchase flow.
///
/// This widget handles the loading state automatically and disables
/// itself while the transaction is processing.
@Deprecated('Use PurchaseButtonV2 instead')
class PurchaseButton extends StatelessWidget { ... }/// The current optimization level (0.0 to 1.0).
double get optimizationLevel => _level;
set optimizationLevel(double value) { ... }[MyClass], [variableName], [methodName] to link to in-scope identifiers.`true`, `null`, `this` for keywords and literals./// Example:
///
/// ```dart
/// final path = FlightPath(coordinates: [a, b]);
/// ```/// Displays a flight path on a map.
///
/// Use this widget within a [MapLayout]. The path is drawn using
/// the provided [coordinates].
class FlightPath extends StatelessWidget {
/// Creates a flight path.
///
/// The [coordinates] must contain at least two points.
const FlightPath({required this.coordinates, super.key});State logic) to aid maintainability, even though public APIs are the priority.