getChannel method

Future<AccountIcon> getChannel()

Obtains icon information.

Implementation

Future<AccountIcon> getChannel() async {
  return AccountIcon.fromMap(
    await _c.invokeMethod(
      'getChannel',
      <String, dynamic>{
        ..._params,
      },
    ),
  );
}