getCheck method
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,
},
);
}