toastInfo method
Implementation
void toastInfo(String message, BuildContext context) {
FlutterToastr.show(
message,
context,
duration: 3,
textStyle: const TextStyle(
color: Colors.black,
fontSize: 16.0,
),
backgroundColor: Colors.white,
);
}