devPrint function
Used during development for printing out messages.
Deprecated on purpose to avoid leaving it in the code.
Implementation
@Deprecated('Dev only')
void devPrint(Object object) {
debugPrint(object.toString());
}
Used during development for printing out messages.
Deprecated on purpose to avoid leaving it in the code.
@Deprecated('Dev only')
void devPrint(Object object) {
debugPrint(object.toString());
}