help method

String? help(
  1. dynamic id, {
  2. String? module,
})

Get the documentational comment of an identifier within the soruce code.

Implementation

String? help(dynamic id, {String? module}) =>
    interpreter.help(id, module: module);