frame method

Container frame({
  1. double? width,
  2. double? height,
})

A modifier that sets its widget's frame size.

Example:

Icon(Icons.person)
    .frame(width: 50, height: 25);

Implementation

Container frame({double? width, double? height}) {
  return _rebase(width: width, height: height);
}