text static method

Stream text(
  1. String text
)

Implementation

static Stream text(String text) async* {
  ShareResult result = await Share.shareWithResult(text);
  yield result.status;
}