main function

void main()

Implementation

void main() {
  Log.d('Debug log');
  Log.i('Info log');
  Log.w('Warning log');
  Log.e('Error log');
  Log.v('Verbose log');
  Log.custom(
    'Custom log',
    foreColor: 10,
    backColor: 200,
  );
}