hello function

String hello({
  1. required String a,
  2. dynamic hint,
})

Implementation

String hello({required String a, dynamic hint}) =>
    RustLib.instance.api.hello(a: a, hint: hint);