NativeProgressStyle constructor

const NativeProgressStyle({
  1. bool showProgressBar = true,
  2. Color color = const Color(0xFF4CAF50),
  3. double height = 4.0,
})

Creates a NativeProgressStyle instance.

Implementation

const NativeProgressStyle({
  this.showProgressBar = true,
  this.color = const Color(0xFF4CAF50), // Green 500
  this.height = 4.0,
});