TODO function

void TODO([
  1. String? reason
])

Always throws UnimplementedError stating that operation is not implemented.

Implementation

// ignore: non_constant_identifier_names
void TODO([String? reason]) =>
    throw UnimplementedError(reason ?? 'An operation is not implemented.');