withSchema method

String withSchema(
  1. String? schema
)

Implementation

String withSchema(String? schema) {
  if (schema == null || schema.isEmpty) return this;
  return "$schema.$this";
}