extension TryCastExtension on Object { T? tryCast() => this is T ? this as T : null; }