setDataAndType method

Intent setDataAndType(
  1. Uri? data,
  2. String? type
)

Implementation

Intent setDataAndType(Uri? data, String? type) {
  _data = data;
  _type = type;
  return this;
}