printFunction static method

void printFunction(
  1. String prefix,
  2. dynamic value,
  3. String info, {
  4. bool isError = false,
})

Implementation

static void printFunction(
  String prefix,
  dynamic value,
  String info, {
  bool isError = false,
}) {
  Get.log('$prefix $value $info'.trim(), isError: isError);
}