terms method

dynamic terms(
  1. String? url
)

Implementation

terms(String? url) {
  final Uri terms = Uri.parse(
    url ?? ServicesEnvironment.termsUrl,
  );

  _launchUrl(
    uri: terms,
    launchMode: LaunchMode.externalApplication,
  );
}