getCheck method

Future<Check> getCheck({
  1. required String checkId,
})

Implementation

Future<Check> getCheck({
  required String checkId,
}) async {
  return await invokeMethod<Check>(
    (j) => Check.fromJson(j),
    'autogen_getCheck',
    {
      'env': this.env.index,
      'accessToken': this.accessToken,
      'check_id': checkId,
    },
  );
}