RoundRectangleShape constructor

const RoundRectangleShape({
  1. Size size = const Size(12, 12),
  2. Size cornerSize = const Size.square(3),
})

Implementation

const RoundRectangleShape({
  this.size = const Size(12, 12),
  this.cornerSize = const Size.square(3),
}) : super._();