FleetPositionedDirectional constructor

const FleetPositionedDirectional({
  1. Key? key,
  2. double? start,
  3. double? top,
  4. double? end,
  5. double? bottom,
  6. double? width,
  7. double? height,
  8. required Widget child,
})

Corresponding constructor to PositionedDirectional.

Implementation

const FleetPositionedDirectional({
  super.key,
  this.start,
  this.top,
  this.end,
  this.bottom,
  this.width,
  this.height,
  required this.child,
});