cashappProvider top-level property

LinkProvider cashappProvider
final

Implementation

final cashappProvider = LinkProvider(
  _cashapp,
  tags: {Tags.paymentProvider, Tags.socialMedia},
  webLinkGenerator: (input) {
    var handle = input.handle!;
    if (!handle.startsWith('\$')) {
      handle = '\$$handle';
    }
    return 'https://cash.app/$handle';
  },
);