MethodChannel constructor

const MethodChannel(String name, [ MethodCodec codec = const StandardMethodCodec() ])

Creates a MethodChannel with the specified name.

The codec used will be StandardMethodCodec, unless otherwise specified.

Neither name nor codec may be null.

Implementation

const MethodChannel(this.name, [this.codec = const StandardMethodCodec()]);