JsonDecodingError.expectedBool constructor

JsonDecodingError.expectedBool(
  1. Object? json
)

Implementation

factory JsonDecodingError.expectedBool(Object? json) {
  return JsonDecodingError.expected(json, expectedType: 'a JSON boolean');
}