report method

Future<bool> report(
  1. SCReportModel source
)

发布爆料

Implementation

Future<bool> report(SCReportModel source) async {
  if (!_supportPlatform || !isInitialize) return false;
  final bool? state =
      await _channel.invokeMethod<bool>('report', source.toMap());
  return state ?? false;
}