MaterialGap constructor

const MaterialGap({@required LocalKey key, double size: 16.0 })

Creates a Material gap with a given size.

Implementation

const MaterialGap({
  @required LocalKey key,
  this.size = 16.0
}) : assert(key != null),
     super(key);