class ActiveModel::Attribute

def from_database(name, value_before_type_cast, type, value = nil)

Experimental RBS support (using type sampling data from the type_fusion project).

def from_database: (String name, String? value_before_type_cast, ActiveModel::Type::String type, ?nil value) -> untyped

This signature was generated using 2 samples from 1 application.

def from_database(name, value_before_type_cast, type, value = nil)
  FromDatabase.new(name, value_before_type_cast, type, nil, value)
end