info method

Future<RespType> info([
  1. String? section
])

Implementation

Future<RespType> info([String? section]) async {
  return tier0.execute([
    'INFO',
    if (section != null) section,
  ]);
}