location method

CommandBuilder location(
  1. Location? location, {
  2. List<String>? also,
  3. String? prefix,
  4. String? suffix,
})

Implementation

CommandBuilder location(
  Location? location, {
  List<String>? also,
  String? prefix,
  String? suffix,
}) =>
    string(
      location.toString(),
      also: also,
      prefix: prefix,
      suffix: suffix,
    );