toString method

  1. @override
String toString()
override

Returns a String representation of the object

Implementation

@override
String toString() {
  Map<String, dynamic> collections = {
    'bottomBarColor': bottomBarColor,
    'color': color,
    'showBottomBar': showBottomBar,
    'allowDebugging': allowDebugging,
    'backgroundColor': backgroundColor,
  };
  return collections.toString();
}