url property

Uri get url

Url for the send.monobank.ua link

Constructed from id and type

Implementation

Uri get url => Uri(
      scheme: 'https',
      host: 'send.monobank.ua',
      pathSegments: [
        if (type == SendIdType.jar) 'jar',
        id,
      ],
    );