SafeAreaManager.fromLTRB constructor

const SafeAreaManager.fromLTRB(
  1. bool left,
  2. bool top,
  3. bool right,
  4. bool bottom,
)

Implementation

const SafeAreaManager.fromLTRB(
  // ignore: avoid_positional_boolean_parameters this is standard on .fromLTRB
  this.left,
  this.top,
  this.right,
  this.bottom,
);