devPrint function

  1. @Deprecated('Dev only')
void devPrint(
  1. Object object
)

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());
}