getDefaultDimensions method

  1. @override
({double height, double paddingH, double paddingV, double width}) getDefaultDimensions()
override

Get component-specific default dimensions. Returns a record with (width, height, paddingH, paddingV).

Implementation

@override
({double width, double height, double paddingH, double paddingV})
    getDefaultDimensions() {
  return (width: 200.0, height: 200.0, paddingH: 16.0, paddingV: 16.0);
}