jsonEncodeBool function

dynamic jsonEncodeBool(
  1. bool value
)

Safe conversion of a bool to a JSON

Implementation

// ignore: avoid_positional_boolean_parameters
dynamic jsonEncodeBool(final bool value) => value;