TODO function

Never TODO([
  1. String? reason
])

Always throws NotImplementedException stating that operation is not implemented.

Implementation

@pragma('vm:prefer-inline')
@pragma('dart2js:tryInline')
// ignore: non_constant_identifier_names
Never TODO([String? reason]) => throw NotImplementedException(reason);