See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import 'dart:developer'; | |
| import 'dart:isolate'; | |
| import 'package:flutter/material.dart'; | |
| class MyBasicIsolateExample extends StatefulWidget { | |
| const MyBasicIsolateExample({Key? key}) : super(key: key); | |
| @override | |
| State<MyBasicIsolateExample> createState() => _MyBasicIsolateExampleState(); |