Margin.bottom constructor

const Margin.bottom(
  1. double amount
)

Do that:

EdgeInsets.only(bottom: amount)

Implementation

const Margin.bottom(double amount) : super.only(bottom: amount);