UmInitWeiBo constructor

UmInitWeiBo({
  1. required String appKey,
  2. required String appSecret,
  3. required String redirectUrl,
})

Implementation

UmInitWeiBo({
  required this.appKey,
  required this.appSecret,
  required this.redirectUrl,
})   : assert(appKey.isNotEmpty),
      assert(appSecret.isNotEmpty),
      assert(redirectUrl.isNotEmpty);