NewScreen constructor

NewScreen({
  1. double? height,
  2. double? width,
  3. Color? containerColor,
  4. String? title,
})

Implementation

NewScreen({
  this.height,
  this.width,
  this.containerColor,
  this.title,
});