paddingDirectional method

Widget paddingDirectional({
  1. double start = 0.0,
  2. double top = 0.0,
  3. double end = 0.0,
  4. double bottom = 0.0,
})

Implementation

Widget paddingDirectional({
  double start = 0.0,
  double top = 0.0,
  double end = 0.0,
  double bottom = 0.0,
}) {
  return Padding(
    padding: EdgeInsetsDirectional.only(
      start: start,
      top: top,
      end: end,
      bottom: bottom,
    ),
    child: this,
  );
}