loadingIndicator method
Implementation
Widget loadingIndicator(bool loading) {
return loading
? SizedBox(
child: CircularProgressIndicator(
valueColor: new AlwaysStoppedAnimation<Color>(Colors.white),
strokeWidth: 3.0,
),
height: 25.0,
width: 25.0,
).withPadding(EdgeInsets.all(12.0))
: this;
}