resolve static method

String? resolve(
  1. String name
)

Resolves a format name to its pattern, or null if not found.

Implementation

static String? resolve(String name) {
  return all[name];
}